From: Jim Blandy Date: Tue, 18 May 1993 22:51:56 +0000 (+0000) Subject: * configure.in: Include remarks saying what order the autoconf X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96184 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=00c564b505d1d02afee6f57262c375ea806f721b;p=emacs.git * configure.in: Include remarks saying what order the autoconf tests should go in, and remind people to change config.h.in whenever they add autoconf tests which make #definitions. --- diff --git a/configure1.in b/configure1.in index e4b93d02d1c..d5a226bdfa8 100755 --- a/configure1.in +++ b/configure1.in @@ -815,18 +815,37 @@ if test -n "${GCC}"; then CFLAGS='-g -O' fi -#### Some other nice autoconf tests. +#### Some other nice autoconf tests. If you add a test here which +#### should make an entry in src/config.h, don't forget to add an +#### #undef clause to src/config.h.in for autoconf to modify. ] +dnl checks for programs AC_LN_S AC_PROG_CPP + +dnl checks for UNIX variants that set `DEFS' + +dnl checks for header files AC_HAVE_HEADERS(sys/timeb.h sys/time.h) AC_STDC_HEADERS AC_TIME_WITH_SYS_TIME + +dnl checks for typedefs AC_RETSIGTYPE + +dnl checks for functions AC_ALLOCA AC_HAVE_FUNCS(gettimeofday gethostname dup2) + +dnl checks for structure members AC_STRUCT_TM + +dnl checks for compiler characteristics AC_CONST + +dnl checks for operating system services + +dnl other checks for UNIX variants [